Skip to content

Create a separate page for contributors#956

Open
BoHristova wants to merge 25 commits into
gardener:masterfrom
BoHristova:create-a-contribute-page
Open

Create a separate page for contributors#956
BoHristova wants to merge 25 commits into
gardener:masterfrom
BoHristova:create-a-contribute-page

Conversation

@BoHristova
Copy link
Copy Markdown
Contributor

@BoHristova BoHristova commented Apr 29, 2026

How to categorize this PR?

/kind enhancement

What this PR does / why we need it:
This PR introduces a new top-level "Contribute" section to the Gardener website.

  • Moved all documents from the "Contribute" section and all documents for the "Developer" persona to the "Contribute" page.
  • Deleted the outdated CI/CD document from the Contribute section.
  • Created a "Developer Starter Kit" section that contains the guides for setting up Gardener locally as well as general development guidelines.
  • Created a landing page and index pages for the sections that were missing one.

The "Contribute" page is a work in progress and will be updated with future pull requests.

Which issue(s) this PR fixes:
Fixes #893

Special notes for your reviewer:
/cc @marc1404 @n-boshnakov @klocke-io

Summary by CodeRabbit

  • New Features

    • Added a top-level "Contribute" site section with a contributor landing page, card-based links, and a dedicated sidebar entry.
  • Documentation

    • New contributor pages: Contributor Guide, Contribution Process, Developer Starter Kit, and targeted contributor docs.
    • Consolidated and reorganized contribution content; removed/relocated legacy contribute pages and adjusted documentation navigation and exclusions.
  • Style

    • New card layout component and an action-button style for contributor pages.

@gardener-prow gardener-prow Bot added do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. kind/enhancement Enhancement, improvement, extension labels Apr 29, 2026
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 29, 2026

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

Creates a new top-level "Contribute" documentation section: adds DocForge manifests, VitePress routing/sidebar, a CardGrid component and styles, moves contributor-facing pages into website/contribute/ (deleting the previous website/documentation/contribute/ pages), and updates related configs and links.

Changes

Contribute documentation + theme

Layer / File(s) Summary
DocForge manifest (new)
.docforge/contribute.yaml
Declares contributor doc tree, imports local website/contribute content, external README/docs, per-file frontmatter overrides, and subtree exclusions (e.g., development/).
Site manifest updates
.docforge/documentation/documentation.yaml, .docforge/documentation/gardener-extensions/infrastructure.yaml, .docforge/documentation/gardener-extensions/others.yaml, .docforge/documentation/other-components.yaml, .docforge/website.yaml
Removes old documentation/contribute from the doc tree, relocates gardener/concepts, and adds development/ to excludeFiles for several extension/component fileTrees; registers contribute.yaml in website manifest.
VitePress routing & sidebar
.vitepress/config.mts, .vitepress/theme/contribute-sidebar.ts
Imports and registers contributeSidebar() in allSidebars, adds "Contribute" top-nav entry, and implements filesystem-checking weight-sorted sidebar generator for /contribute/.
Theme components & style
.vitepress/theme/components/CardGrid.vue, .vitepress/theme/index.ts, .vitepress/theme/style.css
Adds CardGrid.vue component (prop: cards: {title,details,link}[]), registers CardGrid and VPFeatures globally, and adds .action-button CSS.
Content: new contribute pages
website/contribute/_index.md, website/contribute/contribution-process/*, website/contribute/developer-starter-kit/_index.md, website/contribute/gardener/_index.md, website/contribute/documentation/_index.md
Adds contributor landing page with CardGrid sections, Contribution Process, Contributor Guide, Developer Starter Kit, Gardener dev index, and Documentation index pages (frontmatter and content).
Content removals / redirects
website/documentation/contribute/* (deleted)
Removes previous website/documentation/contribute/ pages (landing, code, CI/CD, docs contribution, etc.) which were replaced by website/contribute/ equivalents.
Build & misc updates
.gitignore, website/blog/2023/03/03-27-high-availability-and-zone-outage-toleration.md
Whitelists .docforge/**/*.yaml in .gitignore; updates blog internal link from documentation/contribute/ to contribute/.

Sequence Diagram(s)

sequenceDiagram
    participant Editor as Editor (author)
    participant FS as Filesystem (website/, .docforge/, .vitepress/)
    participant VitePress as VitePress dev server
    participant DocForge as DocForge build
    participant Browser as Browser/Reader

    Editor->>FS: add `.docforge/contribute.yaml`, `website/contribute/*`, CardGrid, theme changes
    FS->>DocForge: DocForge reads manifests (including new contribute.yaml)
    FS->>VitePress: VitePress loads config.mts and contributeSidebar()
    VitePress->>FS: contributeSidebar() checks `hugo/content/contribute` presence
    VitePress->>Browser: serve `/contribute/` route and sidebar
    Browser->>VitePress: request `/contribute/` page
    VitePress->>FS: render `website/contribute/_index.md` using CardGrid component
    VitePress->>Browser: deliver rendered HTML/CSS (includes `.action-button`)
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Possibly related PRs

Suggested labels

kind/cleanup, size/XXL, lgtm

Suggested reviewers

  • klocke-io

Poem

🐰 I hopped through folders, fetched a YAML seed,
Planted CardGrids, sidebars—now docs take the lead.
Contributors welcomed with a tidy new gate,
Read, click, and contribute—come help cultivate!

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title 'Create a separate page for contributors' accurately summarizes the main objective of the PR—establishing a dedicated 'Contribute' section on the website.
Description check ✅ Passed The PR description follows the template structure, categorizes the change as an enhancement, clearly explains what was done and why, and references the relevant issue.
Linked Issues check ✅ Passed The PR successfully implements all requirements from issue #893: creates a dedicated Contribute page with landing and sidebar navigation, moves Developer persona and Contribute section content, consolidates contribution-related materials, and is now accessible from top-level navigation.
Out of Scope Changes check ✅ Passed All changes are directly related to creating and organizing the new Contribute section and its content; no extraneous modifications were introduced.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Tip

💬 Introducing Slack Agent: The best way for teams to turn conversations into code.

Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.

  • Generate code and open pull requests
  • Plan features and break down work
  • Investigate incidents and troubleshoot customer tickets together
  • Automate recurring tasks and respond to alerts with triggers
  • Summarize progress and report instantly

Built for teams:

  • Shared memory across your entire org—no repeating context
  • Per-thread sandboxes to safely plan and execute work
  • Governance built-in—scoped access, auditability, and budget controls

One agent for your entire SDLC. Right inside Slack.

👉 Get started


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@gardener-prow gardener-prow Bot added the cla: yes Indicates the PR's author has signed the cla-assistant.io CLA. label Apr 29, 2026
@netlify
Copy link
Copy Markdown

netlify Bot commented Apr 29, 2026

Deploy Preview for gardener-docs ready!

Name Link
🔨 Latest commit 3086f94
🔍 Latest deploy log https://app.netlify.com/projects/gardener-docs/deploys/6a01804789955a00086d49b5
😎 Deploy Preview https://deploy-preview-956--gardener-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
🤖 Make changes Run an agent on this branch

To edit notification comments on pull requests, go to your Netlify project configuration.

@gardener-prow gardener-prow Bot added the size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. label Apr 29, 2026
@BoHristova
Copy link
Copy Markdown
Contributor Author

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 29, 2026

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (3)
.vitepress/theme/style.css (1)

13-15: Add an explicit keyboard focus state for action buttons.

You already style hover; adding :focus-visible keeps keyboard navigation feedback consistent.

♿ Suggested enhancement
 a.action-button:hover {
   background-color: var(--vp-button-brand-hover-bg);
 }
+
+a.action-button:focus-visible {
+  background-color: var(--vp-button-brand-hover-bg);
+  outline: 2px solid var(--vp-c-brand-1);
+  outline-offset: 2px;
+}
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.vitepress/theme/style.css around lines 13 - 15, Add an explicit keyboard
focus state for the action buttons by adding a corresponding
a.action-button:focus-visible rule (matching the existing a.action-button:hover
styling) so keyboard users see the same feedback as hover; update the CSS to
define background-color: var(--vp-button-brand-hover-bg) (and any outline or
box-shadow if needed for accessibility) for the a.action-button:focus-visible
selector to keep hover and keyboard focus consistent.
website/contribute/_index.md (1)

17-58: Use root-relative links for internal destinations.

These are internal docs routes, but they’re hardcoded to https://gardener.cloud/.... Prefer /contribute/... links to keep previews/base-path deployments and local navigation behavior consistent.

♻️ Proposed refactor
-    link: 'https://gardener.cloud/contribute/contribution-process/how-to-contribute'
+    link: '/contribute/contribution-process/how-to-contribute'
@@
-    link: 'https://gardener.cloud/contribute/developer-starter-kit/'
+    link: '/contribute/developer-starter-kit/'
@@
-    link: 'https://gardener.cloud/contribute/gardener/'
+    link: '/contribute/gardener/'
@@
-    link: 'https://gardener.cloud/contribute/extensions/'
+    link: '/contribute/extensions/'
@@
-    link: 'https://gardener.cloud/contribute/other-components/'
+    link: '/contribute/other-components/'
@@
-    link: 'https://gardener.cloud/contribute/dashboard/'
+    link: '/contribute/dashboard/'
@@
-    link: 'https://gardener.cloud/contribute/documentation/'
+    link: '/contribute/documentation/'
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/contribute/_index.md` around lines 17 - 58, Replace absolute
gardener.cloud URLs with root-relative paths in the CardGrid :cards arrays so
internal docs route links use '/contribute/...' instead of
'https://gardener.cloud/contribute/...'; update each card object in the CardGrid
props (e.g., the entries for 'Contributor Guide', 'Developer Starter Kit',
'Gardener', 'Extensions', 'Other Components', 'Dashboard', and 'Documentation')
to use root-relative link strings that begin with '/contribute/...'.
website/blog/2023/03/03-27-high-availability-and-zone-outage-toleration.md (1)

452-452: Prefer root-relative clean URLs for internal links.

Line 452 uses deep relative links to _index.md, which are fragile during future moves. Use route paths directly (/contribute/#...) for stability.

♻️ Proposed refactor
-All channels for getting in touch or learning about the project are listed on our [landing page](../../../contribute/_index.md#community). We are cordially inviting interested parties to join our [bi-weekly meetings](../../../contribute/_index.md#bi-weekly-meetings).
+All channels for getting in touch or learning about the project are listed on our [landing page](/contribute/#community). We are cordially inviting interested parties to join our [bi-weekly meetings](/contribute/#bi-weekly-meetings).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/blog/2023/03/03-27-high-availability-and-zone-outage-toleration.md`
at line 452, Replace the deep relative internal links
"../../../contribute/_index.md#community" and
"../../../contribute/_index.md#bi-weekly-meetings" in the paragraph in
website/blog/2023/03/03-27-high-availability-and-zone-outage-toleration.md with
root‑relative route paths "/contribute/#community" and
"/contribute/#bi-weekly-meetings" so the links remain stable if the file is
moved; update both occurrences in the sentence referencing the landing page and
bi-weekly meetings.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In @.vitepress/theme/components/CardGrid.vue:
- Around line 21-24: The .card-grid rule currently uses a fixed
grid-template-columns: repeat(3, 1fr) which forces three columns on all
viewports; change it to a responsive column strategy by replacing the hard-coded
repeat(3, 1fr) with a responsive pattern (e.g., use repeat(auto-fit,
minmax(<minimum card width>, 1fr)) for grid-template-columns) and keep
grid-auto-rows as needed, and optionally add a small-screen media query to
further adjust min-width or switch to a single column for very narrow screens;
update the .card-grid declaration (grid-template-columns and optional media
query) so cards do not compress on small viewports.

In `@website/contribute/_index.md`:
- Line 3: Update the frontmatter description value: change the string bound to
the description key from "Contributors guides for code and documentation" to the
singular form "Contributor guides for code and documentation" so the description
uses "Contributor" instead of "Contributors".

---

Nitpick comments:
In @.vitepress/theme/style.css:
- Around line 13-15: Add an explicit keyboard focus state for the action buttons
by adding a corresponding a.action-button:focus-visible rule (matching the
existing a.action-button:hover styling) so keyboard users see the same feedback
as hover; update the CSS to define background-color:
var(--vp-button-brand-hover-bg) (and any outline or box-shadow if needed for
accessibility) for the a.action-button:focus-visible selector to keep hover and
keyboard focus consistent.

In `@website/blog/2023/03/03-27-high-availability-and-zone-outage-toleration.md`:
- Line 452: Replace the deep relative internal links
"../../../contribute/_index.md#community" and
"../../../contribute/_index.md#bi-weekly-meetings" in the paragraph in
website/blog/2023/03/03-27-high-availability-and-zone-outage-toleration.md with
root‑relative route paths "/contribute/#community" and
"/contribute/#bi-weekly-meetings" so the links remain stable if the file is
moved; update both occurrences in the sentence referencing the landing page and
bi-weekly meetings.

In `@website/contribute/_index.md`:
- Around line 17-58: Replace absolute gardener.cloud URLs with root-relative
paths in the CardGrid :cards arrays so internal docs route links use
'/contribute/...' instead of 'https://gardener.cloud/contribute/...'; update
each card object in the CardGrid props (e.g., the entries for 'Contributor
Guide', 'Developer Starter Kit', 'Gardener', 'Extensions', 'Other Components',
'Dashboard', and 'Documentation') to use root-relative link strings that begin
with '/contribute/...'.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: ba383913-0e65-4c86-89ac-166a1edbc9d9

📥 Commits

Reviewing files that changed from the base of the PR and between 817b014 and a5b4bf1.

⛔ Files ignored due to path filters (1)
  • website/contribute/contribution-process/images/cicd-overview.png is excluded by !**/*.png
📒 Files selected for processing (39)
  • .docforge/contribute.yaml
  • .docforge/documentation/documentation.yaml
  • .docforge/documentation/gardener-extensions/infrastructure.yaml
  • .docforge/documentation/gardener-extensions/others.yaml
  • .docforge/documentation/other-components.yaml
  • .docforge/website.yaml
  • .gitignore
  • .vitepress/config.mts
  • .vitepress/theme/components/CardGrid.vue
  • .vitepress/theme/contribute-sidebar.ts
  • .vitepress/theme/index.ts
  • .vitepress/theme/style.css
  • website/blog/2023/03/03-27-high-availability-and-zone-outage-toleration.md
  • website/contribute/_index.md
  • website/contribute/contribution-process/_index.md
  • website/contribute/contribution-process/contributing-bigger-changes.md
  • website/contribute/contribution-process/how-to-contribute.md
  • website/contribute/contribution-process/images/cicd-overview.sketch
  • website/contribute/contribution-process/roles.md
  • website/contribute/developer-starter-kit/_index.md
  • website/contribute/documentation/_index.md
  • website/contribute/documentation/adding-existing-documentation.md
  • website/contribute/documentation/blog-tags.md
  • website/contribute/documentation/formatting-guide.md
  • website/contribute/documentation/images.md
  • website/contribute/documentation/markup.md
  • website/contribute/documentation/organization.md
  • website/contribute/documentation/pr-guidelines.md
  • website/contribute/documentation/shortcodes.md
  • website/contribute/documentation/style-guide/_index.md
  • website/contribute/documentation/style-guide/concept_template.md
  • website/contribute/documentation/style-guide/reference_template.md
  • website/contribute/documentation/style-guide/task_template.md
  • website/contribute/gardener/_index.md
  • website/documentation/contribute/_index.md
  • website/documentation/contribute/code/_index.md
  • website/documentation/contribute/code/cicd.md
  • website/documentation/contribute/code/dependencies.md
  • website/documentation/contribute/documentation/_index.md
💤 Files with no reviewable changes (5)
  • website/documentation/contribute/documentation/_index.md
  • website/documentation/contribute/code/_index.md
  • website/documentation/contribute/code/cicd.md
  • website/documentation/contribute/code/dependencies.md
  • website/documentation/contribute/_index.md

Comment thread .vitepress/theme/components/CardGrid.vue
Comment thread website/contribute/_index.md Outdated
@BoHristova BoHristova force-pushed the create-a-contribute-page branch from b6b45eb to 31e25fa Compare April 29, 2026 17:02
@BoHristova BoHristova marked this pull request as ready for review April 30, 2026 10:42
@BoHristova BoHristova requested a review from a team as a code owner April 30, 2026 10:42
@gardener-prow gardener-prow Bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Apr 30, 2026
Copy link
Copy Markdown
Contributor

@n-boshnakov n-boshnakov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@gardener-prow gardener-prow Bot added the lgtm Indicates that a PR is ready to be merged. label Apr 30, 2026
@gardener-prow
Copy link
Copy Markdown

gardener-prow Bot commented Apr 30, 2026

LGTM label has been added.

DetailsGit tree hash: 1f8f8a26a368174425d50839ef0600fed5e0dfd8

@gardener-prow gardener-prow Bot removed the lgtm Indicates that a PR is ready to be merged. label Apr 30, 2026
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
.vitepress/theme/components/CardGridGroup.vue (1)

6-21: ⚡ Quick win

Use container/content-driven observation, not only window.resize, for re-equalization.

Line 16 only reacts to viewport resize. Card widths/heights can also change on layout/content updates without a resize event, leaving stale min-height values until the user resizes manually.

♻️ Suggested patch
-<script setup lang="ts">
-import { ref, onMounted, onUnmounted } from 'vue'
+<script setup lang="ts">
+import { ref, onMounted, onUnmounted, nextTick } from 'vue'

 const container = ref<HTMLElement | null>(null)
+let resizeObserver: ResizeObserver | null = null
+let rafId = 0

 function equalizeCardHeights() {
   if (!container.value) return
   const cards = container.value.querySelectorAll<HTMLElement>('.card')
+  if (!cards.length) return
   cards.forEach(c => c.style.minHeight = '')
   const maxHeight = Math.max(...Array.from(cards).map(c => c.offsetHeight))
   cards.forEach(c => c.style.minHeight = `${maxHeight}px`)
 }
+
+function scheduleEqualize() {
+  cancelAnimationFrame(rafId)
+  rafId = requestAnimationFrame(equalizeCardHeights)
+}

 onMounted(() => {
-  equalizeCardHeights()
-  window.addEventListener('resize', equalizeCardHeights)
+  nextTick(scheduleEqualize)
+  window.addEventListener('resize', scheduleEqualize)
+  resizeObserver = new ResizeObserver(scheduleEqualize)
+  if (container.value) resizeObserver.observe(container.value)
 })

 onUnmounted(() => {
-  window.removeEventListener('resize', equalizeCardHeights)
+  window.removeEventListener('resize', scheduleEqualize)
+  resizeObserver?.disconnect()
+  cancelAnimationFrame(rafId)
 })
 </script>
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.vitepress/theme/components/CardGridGroup.vue around lines 6 - 21, The
component currently only re-equalizes in onMounted and on window.resize; update
it to observe layout/content changes by creating a ResizeObserver (and
optionally a MutationObserver) that watches container.value (and/or its child
.card elements) and calls equalizeCardHeights on changes, while keeping the
existing window resize handler; ensure both observers are created in onMounted
and properly disconnected in onUnmounted alongside removing the window listener
so equalizeCardHeights runs whenever card sizes or content change.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In @.vitepress/theme/components/CardGridGroup.vue:
- Around line 6-21: The component currently only re-equalizes in onMounted and
on window.resize; update it to observe layout/content changes by creating a
ResizeObserver (and optionally a MutationObserver) that watches container.value
(and/or its child .card elements) and calls equalizeCardHeights on changes,
while keeping the existing window resize handler; ensure both observers are
created in onMounted and properly disconnected in onUnmounted alongside removing
the window listener so equalizeCardHeights runs whenever card sizes or content
change.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: ed124245-cd05-4b00-9887-10d95af3c8aa

📥 Commits

Reviewing files that changed from the base of the PR and between 31e25fa and 0789c75.

📒 Files selected for processing (4)
  • .vitepress/theme/components/CardGrid.vue
  • .vitepress/theme/components/CardGridGroup.vue
  • .vitepress/theme/index.ts
  • website/contribute/_index.md
✅ Files skipped from review due to trivial changes (2)
  • website/contribute/_index.md
  • .vitepress/theme/components/CardGrid.vue
🚧 Files skipped from review as they are similar to previous changes (1)
  • .vitepress/theme/index.ts

klocke-io
klocke-io previously approved these changes May 4, 2026
Copy link
Copy Markdown
Member

@klocke-io klocke-io left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

Comment thread .docforge/contribute.yaml
@gardener-prow gardener-prow Bot added the lgtm Indicates that a PR is ready to be merged. label May 4, 2026
@gardener-prow
Copy link
Copy Markdown

gardener-prow Bot commented May 4, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: klocke-io

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@gardener-prow
Copy link
Copy Markdown

gardener-prow Bot commented May 4, 2026

LGTM label has been added.

DetailsGit tree hash: 3f6145b8b17a600a6f3c11731e77fb99b3f79853

@gardener-prow gardener-prow Bot added approved Indicates a PR has been approved by an approver from all required OWNERS files. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. labels May 4, 2026
@gardener-prow gardener-prow Bot removed lgtm Indicates that a PR is ready to be merged. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. labels May 11, 2026
BoHristova and others added 23 commits May 11, 2026 09:54
- Delete cicd.md from general-information
CSS Grid already handles equal-height cards per row via grid-auto-rows: 1fr
in CardGrid.vue, making the JS approach redundant.
CardGrid already uses grid-auto-rows: 1fr which equalizes card
heights. The CardGridGroup wrapper was a no-op after the CSS refactor.
@BoHristova BoHristova force-pushed the create-a-contribute-page branch from d78afa7 to 3086f94 Compare May 11, 2026 07:07
@gardener-prow gardener-prow Bot removed the do-not-merge/contains-merge-commits Indicates a PR which contains merge commits. label May 11, 2026
Copy link
Copy Markdown
Contributor

@n-boshnakov n-boshnakov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@gardener-prow gardener-prow Bot added the lgtm Indicates that a PR is ready to be merged. label May 11, 2026
@gardener-prow
Copy link
Copy Markdown

gardener-prow Bot commented May 11, 2026

LGTM label has been added.

DetailsGit tree hash: b24ff58bec4d6a6299158cc1078e96f1406fc6e2

@gardener-prow gardener-prow Bot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label May 11, 2026
@gardener-prow
Copy link
Copy Markdown

gardener-prow Bot commented May 11, 2026

PR needs rebase.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. cla: yes Indicates the PR's author has signed the cla-assistant.io CLA. kind/enhancement Enhancement, improvement, extension lgtm Indicates that a PR is ready to be merged. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. size/XL Denotes a PR that changes 500-999 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Move content for developers to a dedicated page

3 participants